{% extends 'users/base.html' %} {% block title %}Delete User: {{ object.get_full_name|default:object.email }}{% endblock %} {% block card_content %}

Warning!

You are about to delete the user account for {{ object.get_full_name|default:object.email }}. This action cannot be undone.


All data associated with this user will be permanently removed from the system.

User Details
Name {{ object.get_full_name|default:"-" }}
Email {{ object.email }}
Role {{ object.role.name|default:"-" }}
Status {% if object.is_active %}Active{% else %}Inactive{% endif %}
{% csrf_token %}
Cancel
{% endblock %}